home *** CD-ROM | disk | FTP | other *** search
/ Game Programming in C++ - Start to Finish / GameProgrammingS.iso / Peon / PeonSDK-Win32-1.0.0.exe / {app} / docs / peon.css < prev   
Encoding:
Cascading Style Sheet File  |  2005-09-26  |  2.5 KB  |  114 lines

  1. /* 
  2.  *    File name:        default.css
  3.  *    Description:    Default stylesheet for the project webpages.
  4.  *    Created on:        April 03rd, 2003
  5.  *    Author:        Erik Yuzwa  
  6.  */
  7.  
  8.  
  9. /* GENERAL */
  10.     body, p, div, layer, span, td, th, input, select, li, ul { 
  11.         font-family: Verdana, Arial, sans-serif;
  12.         font-size: 10pt;
  13.         color: #000000;
  14.     }
  15.  
  16.     .banner_image {
  17.       width: 128px;
  18.         height: 16px;
  19.     }
  20.     
  21.     body {
  22.         background-color: #FFFFFF;
  23.     }
  24.  
  25.     table {
  26.         borderWidth: 0.1cm;
  27.       borderColor: #00FF00;
  28.       borderStyle: solid;
  29.       border: 1;
  30.     }
  31.  
  32.     td {
  33.       border-color: #FFFFFF;
  34.     }
  35.  
  36.     .title {font-family: Verdana; font-weight: bold; font-size: 19pt; color: #00CCFF}
  37. H1 {font-family: Verdana; font-size: 22px; font-weight: bold; color: #FF9900}
  38. H2 {font-family: Verdana; font-size: 18px; font-weight: bold; color: #0066FF}
  39. H3 {font-family: Verdana; font-size: 15px; font-weight: bold; color: #00CC00}
  40.  
  41.   .subtitle {font-family: Verdana; font-weight: bold; font-size: 16pt; color: #003E98}
  42.   .author {font-family: Verdana; font-weight: bold; font-size: 14px; color: #FF1100 }
  43.   div.code {font-family: Verdana; font-size: 13px; color: #00FFFF}
  44.   font.comment {font-family: Verdana; font-style: italic; font-size: 13px; color: #FF00FF}
  45.   
  46.  
  47.     A:link {
  48.         color: #0066FF;
  49.         text-decoration: underline;
  50.     }
  51.     
  52.     A:hover {
  53.         color: #0066FF;
  54.         text-decoration: underline;
  55.     }
  56.  
  57.     A:active {
  58.         color: #0066FF;
  59.         text-decoration: underline;
  60.     }
  61.  
  62.     A:visited {
  63.         color: #0066FF;
  64.         text-decoration: underline;
  65.     }
  66.  
  67.     form {
  68.         margin: 0px 0px 0px 0px;
  69.         padding: 0px 0px 0px 0px;
  70.     }
  71.     
  72.     select,option {
  73.         font-weight: normal;
  74.     }
  75.     
  76.     hr {
  77.         color: #CCCCCC;
  78.     }
  79.  
  80.     /* CONTENT CLASSES */
  81.     .sub_header {
  82.         color: #003366;
  83.         font-size: 14pt;
  84.     }
  85.     
  86.     .footer {
  87.         margin-top: 1em;
  88.         text-align: center;
  89.         font-size: 7.5pt;
  90.     }
  91.  
  92.     /* BANNER CLASSES */
  93.     .banner_blue {
  94.         font-weight: bold;
  95.         background-color: #003366;
  96.         color: #FFFFFF;
  97.         padding: 2px 2px 2px 2px;
  98.     }
  99.     
  100.     .banner_green {
  101.         font-weight: bold;
  102.         background-color: #009933;
  103.         color: #FFFFFF;
  104.         padding: 2px 2px 2px 2px;
  105.     }
  106.     
  107.     .banner_gold {
  108.         font-weight: bold;
  109.         background-color: #FFCC00;
  110.         color: #000000;
  111.         padding: 2px 2px 2px 2px;
  112.     }
  113.     
  114.